From 5d16f9bb6f8e0b2da18bc71bfeb259dd81cf415a Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Wed, 8 Jun 2005 08:39:38 +0000 Subject: [PATCH] bitkeeper revision 1.1691.1.3 (42a6aecafCIqSXqRF1ueb8i0jgar3w) Fix 'no value returned in non-void function' warnings on x86/64 gcc. Signed-off-by: Keir Fraser --- xen/include/asm-x86/string.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xen/include/asm-x86/string.h b/xen/include/asm-x86/string.h index 83d1fbb583..6dee130fa7 100644 --- a/xen/include/asm-x86/string.h +++ b/xen/include/asm-x86/string.h @@ -238,6 +238,7 @@ static always_inline void * __constant_memcpy( } } #undef COMMON + return to; } #define __HAVE_ARCH_MEMCPY @@ -367,6 +368,7 @@ static always_inline void *__constant_c_and_count_memset( } } #undef COMMON + return s; } #define __constant_c_x_memset(s, c, count) \ -- 2.30.2